home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / Eenie 1.0b2PQR / EenieRez.h < prev    next >
Encoding:
Text File  |  1991-09-23  |  1.2 KB  |  44 lines  |  [TEXT/MPS ]

  1. // Copyright © 1991 by Apple Computer, Inc.  All rights reserved. 
  2. // EenieRez.h file - used by both Rez and the main code
  3.  
  4. #ifndef __EEENIEREZ__
  5. #define __EENIEREZ__
  6.  
  7. // RESOURCE IDs ---------------------------------------------------------------
  8.  
  9. // GLOBALS --------------------------------------------------------------------
  10.  
  11. #define kSignature                'MOOF'            // qpplication signature
  12. #define kFileType                'SF01'            // file type code used for document files created by this application
  13.  
  14.  
  15. // MENUS ----------------------------------------------------------------------
  16.  
  17. #define mWindoid                10                // windoid menu
  18. #define cGreen                    1001            // windoid commands
  19. #define cYellow                    1002    
  20. #define cRed                    1003
  21.  
  22. #define mNormalMenu                11
  23. #define cNormGreen                1101
  24. #define cNormYellow                1102
  25. #define cNormRed                1103
  26.  
  27. #define cChangeTool                1014
  28.  
  29.  
  30. // CSRS (CURSORS) -------------------------------------------------------------
  31.  
  32. #define kCursor1                701
  33. #define kCursor2                702
  34. #define kCursor3                703
  35. #define kCursor4                704
  36.  
  37.  
  38. // VIEWS ----------------------------------------------------------------------
  39.  
  40. #define kDefaultWindowID        1002            // the main document window
  41.  
  42.  
  43. #endif __EENIEREZ__
  44.